type github.com/andybalholm/brotli.blockEncoder

11 uses

	github.com/andybalholm/brotli (current package)
		brotli_bit_stream.go#L998: type blockEncoder struct {
		brotli_bit_stream.go#L1014: func getBlockEncoder(histogram_length uint, num_block_types uint, block_types []byte, block_lengths []uint32, num_blocks uint) *blockEncoder {
		brotli_bit_stream.go#L1015: 	self, _ := blockEncoderPool.Get().(*blockEncoder)
		brotli_bit_stream.go#L1023: 		self = &blockEncoder{}
		brotli_bit_stream.go#L1041: func cleanupBlockEncoder(self *blockEncoder) {
		brotli_bit_stream.go#L1050: func buildAndStoreBlockSwitchEntropyCodes(self *blockEncoder, tree []huffmanTree, storage_ix *uint, storage []byte) {
		brotli_bit_stream.go#L1059: func storeSymbol(self *blockEncoder, symbol uint, storage_ix *uint, storage []byte) {
		brotli_bit_stream.go#L1083: func storeSymbolWithContext(self *blockEncoder, symbol uint, context uint, context_map []uint32, storage_ix *uint, storage []byte, context_bits uint) {
		brotli_bit_stream.go#L1102: func buildAndStoreEntropyCodesLiteral(self *blockEncoder, histograms []histogramLiteral, histograms_size uint, alphabet_size uint, tree []huffmanTree, storage_ix *uint, storage []byte) {
		brotli_bit_stream.go#L1123: func buildAndStoreEntropyCodesCommand(self *blockEncoder, histograms []histogramCommand, histograms_size uint, alphabet_size uint, tree []huffmanTree, storage_ix *uint, storage []byte) {
		brotli_bit_stream.go#L1144: func buildAndStoreEntropyCodesDistance(self *blockEncoder, histograms []histogramDistance, histograms_size uint, alphabet_size uint, tree []huffmanTree, storage_ix *uint, storage []byte) {